home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / inetutil.1 / inetutil / inetutils-1.1 / libtelnet / Makefile.in < prev    next >
Encoding:
Makefile  |  1996-07-21  |  1.2 KB  |  39 lines

  1. # Makefile for libtelnet
  2. #
  3. # Copyright (C) 1995, 1996 Free Software Foundation, Inc.
  4. #
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2, or (at your option)
  8. # any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. #
  19.  
  20. srcdir = @srcdir@
  21. top_srcdir = @top_srcdir@
  22. include ../config.make
  23.  
  24. SRCS = auth.c enc_des.c encrypt.c genget.c getent.c kerberos.c kerberos5.c \
  25.        krb4encpwd.c misc.c read_password.c rsaencpwd.c spx.c
  26. HDRS = auth-proto.h auth.h enc-proto.h encrypt.h key-proto.h misc-proto.h misc.h
  27. DISTFILES = $(SRCS) $(HDRS)
  28.  
  29. INSTALL_TARGETS = $(libdir)/libtelnet.a
  30. OBJS = $(SRCS:.c=.o)
  31. CLEAN = libtelnet.a $(OBJS)
  32.  
  33. all: libtelnet.a
  34. libtelnet.a: $(OBJS)
  35.     $(AR) rcv $@ $?
  36.     $(RANLIB) $@
  37.  
  38. include $(RULES)
  39.